-
Notifications
You must be signed in to change notification settings - Fork 166
feat: add configurable biometric authentication policies for SecureCredentialsManager #867
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…session management
…K-6524-biometric-policy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds configurable biometric authentication policies to SecureCredentialsManager, allowing developers to control when biometric prompts are shown based on different authentication strategies (Always, Session-based, or App Lifecycle-based).
Key changes:
- Introduction of
BiometricPolicysealed class with three policy types - Enhanced
LocalAuthenticationOptionsto include policy configuration - Session management functionality in
SecureCredentialsManager
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
BiometricPolicy.kt |
New sealed class defining three biometric authentication policies |
LocalAuthenticationOptions.kt |
Added policy parameter and builder method for biometric policy configuration |
SecureCredentialsManager.kt |
Integrated session validation logic and biometric session management |
SecureCredentialsManagerBiometricPolicyTest.kt |
Comprehensive test coverage for new biometric policy functionality |
EXAMPLES.md |
Updated documentation with examples and explanations of BiometricPolicy usage |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
auth0/src/main/java/com/auth0/android/authentication/storage/SecureCredentialsManager.kt
Outdated
Show resolved
Hide resolved
auth0/src/main/java/com/auth0/android/authentication/storage/SecureCredentialsManager.kt
Show resolved
Hide resolved
auth0/src/main/java/com/auth0/android/authentication/storage/SecureCredentialsManager.kt
Outdated
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Show resolved
Hide resolved
auth0/src/main/java/com/auth0/android/authentication/storage/BiometricPolicy.kt
Outdated
Show resolved
Hide resolved
auth0/src/main/java/com/auth0/android/authentication/storage/SecureCredentialsManager.kt
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Outdated
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Show resolved
Hide resolved
...java/com/auth0/android/authentication/storage/SecureCredentialsManagerBiometricPolicyTest.kt
Outdated
Show resolved
Hide resolved
…K-6524-biometric-policy
…Auth0.Android into SDK-6524-biometric-policy
Changes
This PR introduces configurable biometric authentication policies for
SecureCredentialsManager, allowing developers to control when biometric prompts are shown when accessing stored credentials. This enhancement improves user experience by reducing authentication friction while maintaining security.References
auth0/react-native-auth0#687 (comment)
Testing
./gradlew :auth0:testDebugUnitTest --tests "*BiometricPolicyTest"Checklist